-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
54 lines (42 loc) · 1.57 KB
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import java.util.*;
public class BFSGraph {
private Map<Integer, List<Integer>> graph = new HashMap<>();
public void addEdge(int u, int v) {
graph.computeIfAbsent(u, k -> new ArrayList<>()).add(v);
graph.computeIfAbsent(v, k -> new ArrayList<>()).add(u); // For undirected graph
}
public void BFS(int start) {
Queue<Integer> queue = new LinkedList<>();
Set<Integer> visited = new HashSet<>();
queue.add(start);
visited.add(start);
while (!queue.isEmpty()) {
int node = queue.poll();
System.out.print(node + " ");
for (int neighbor : graph.getOrDefault(node, new ArrayList<>())) {
if (!visited.contains(neighbor)) {
visited.add(neighbor);
queue.add(neighbor);
}
}
}
}
public static void main(String[] args) {
BFSGraph bfsGraph = new BFSGraph();
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the number of nodes: ");
int n = scanner.nextInt();
System.out.print("Enter the number of edges: ");
int edges = scanner.nextInt();
System.out.println("Enter the edges (u v):");
for (int i = 0; i < edges; i++) {
int u = scanner.nextInt();
int v = scanner.nextInt();
bfsGraph.addEdge(u, v);
}
System.out.print("Enter the starting node: ");
int start = scanner.nextInt();
System.out.println("BFS Traversal: ");
bfsGraph.BFS(start);
}
}